:root{
  --blue-900:#0b1f4a;
  --blue-700:#1d4ed8;
  --blue-600:#2563eb;
  --blue-100:#dbeafe;
  --blue-50:#eff6ff;

  --text:#0b1220;
  --muted:#64748b;
  --border:#e5e7eb;
  --bg:#ffffff;

  --shadow: 0 1px 2px rgba(0,0,0,.04);
  --r-xl:16px;
  --r-lg:12px;
  --r-md:10px;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:40px 16px 64px;
}

/* Text */
.label{
  margin-top:28px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--blue-700);
}
.h3{
  margin:8px 0 0;
  font-size:20px;
  font-weight:900;
}
.h3Small{ font-size:18px; }
.p{
  margin:10px 0 0;
  font-size:14px;
  line-height:1.6;
  color:var(--muted);
}
.pTight{ margin-top:10px; }

/* Hero */
.heroCard{
  border:1px solid var(--border);
  border-radius:var(--r-xl);
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#fff;
}
.hero{
  position:relative;
  min-height:260px;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:flex-end;
}
.heroOverlay{
  position:absolute;
  inset:0;
  background:rgba(11,31,74,.55);
}
.heroContent{
  position:relative;
  padding:28px;
  width:100%;
}
.badgeRow{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.heroTitle{
  margin:12px 0 0;
  font-size:28px;
  line-height:1.15;
  font-weight:900;
  color:#fff;
}
.heroDesc{
  margin:10px 0 0;
  max-width:720px;
  font-size:15px;
  line-height:1.5;
  color:rgba(255,255,255,.9);
}
.heroCta{ margin-top:18px; }

/* Badges */
.badge{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:10px;
  font-size:12px;
  font-weight:800;
  border:1px solid transparent;
  user-select:none;
  white-space:nowrap;
}
.badgePrimary{ background:var(--blue-600); color:#fff; }
.badgeSoft{ background:var(--blue-100); color:var(--blue-700); }
.badgeOutline{ background:transparent; border-color:var(--blue-600); color:var(--blue-700); }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:10px;
  font-weight:900;
  font-size:14px;
  cursor:pointer;
  text-decoration:none;
  transition:background .15s ease, transform .05s ease;
}
.btnOutline{
  border:1px solid var(--blue-600);
  color:var(--blue-700);
  background:#fff;
}
.btnOutline:hover{ background:var(--blue-50); }
.btnOutline:active{ transform:translateY(1px); }

/* Quick facts */
.quickFacts{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  padding:18px;
  background:#fff;
}
@media(min-width:900px){
  .quickFacts{ grid-template-columns:repeat(3,1fr); }
}
.qf{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.iconBox{
  width:34px; height:34px;
  border-radius:10px;
  border:1px solid var(--border);
  background:var(--blue-50);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--blue-700);
  flex:0 0 auto;
}
.qfTitle{ font-weight:900; font-size:14px; }
.qfDesc{ margin-top:4px; font-size:12px; line-height:1.4; color:var(--muted); }

/* Panels + cards */
.content{ margin-top:32px; }

.panel{
  margin-top:18px;
  border:1px solid var(--border);
  border-radius:var(--r-xl);
  padding:18px;
  background:#fff;
  box-shadow:var(--shadow);
}
.panelTitle{ margin-top:10px; font-weight:900; }
.panelDesc{ margin-top:6px; font-size:12px; color:var(--muted); }

.card{
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  padding:14px;
  background:#fff;
  box-shadow:var(--shadow);
}
.cardHead{
  display:flex;
  gap:10px;
  align-items:center;
}
.cardTitle{ font-weight:900; font-size:14px; }

/* Grids */
.grid2{
  margin-top:18px;
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}
@media(min-width:700px){
  .grid2{ grid-template-columns:1fr 1fr; }
}
.grid3{
  margin-top:14px;
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}
@media(min-width:900px){
  .grid3{ grid-template-columns:repeat(3,1fr); }
}

/* Lists */
.miniList{
  margin:10px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:6px;
  font-size:12px;
  color:var(--muted);
}
.miniList li{
  display:flex;
  gap:8px;
  align-items:flex-start;
}
.dot{
  width:6px;height:6px;border-radius:999px;
  background:#cbd5e1;
  margin-top:6px;
  flex:0 0 auto;
}

/* Pills */
.pillRow{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

/* Dividers */
.divider{
  border:none;
  border-top:1px solid var(--border);
  margin:28px 0;
}
.dividerSmall{ margin:18px 0; }

/* Checklist */
.checklist{
  margin:10px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:8px;
  color:var(--muted);
}
.checklist li{
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.checklist li::before{
  content:"";
  width:8px;height:8px;
  border-radius:999px;
  background:#cbd5e1;
  margin-top:6px;
  flex:0 0 auto;
}

/* Highlight */
.highlight{
  margin-top:14px;
  background:var(--blue-50);
  border:1px solid var(--blue-100);
  border-radius:var(--r-lg);
  padding:14px;
}
.highlightStrong{ font-weight:900; }
.highlightSmall{ margin-top:6px; font-size:12px; color:var(--muted); }

/* Tests */
.tests{ margin-top:34px; }
